home *** CD-ROM | disk | FTP | other *** search
/ Aminet 33 / Aminet 33 - October 1999.iso / Aminet / docs / misc / amigapl.9903.lzh / amigapl.9903 / pci.lzx / Include / resources / pcibase.h < prev   
Encoding:
C/C++ Source or Header  |  1998-02-03  |  801 b   |  36 lines

  1. #ifndef    RESOURCES_PCIBASE_H
  2. #define RESOURCES_PCIBASE_H 1
  3.  
  4. /*
  5. **    $VER: micronik_pci.h 1.0 (22.12.9)
  6. **
  7. **    micronik_pci.resource include file
  8. **
  9. **    (C) Copyright 1997-1998 MicroniK
  10. **        All Rights Reserved
  11. **
  12. */
  13. #ifndef    EXEC_TYPES_H
  14. #include "exec/types.h"
  15. #endif
  16. #include <exec/semaphores.h>
  17. #include <exec/libraries.h>
  18.  
  19. struct PCIBase {
  20.         struct Library pci_Resource;         /* VERSION and REVISION */
  21.         volatile ULONG   pci_BUSErrorFlag;   /* flags to detect Master-Abort */
  22.         ULONG   pci_RequestSIZEOF;           /* sizeof PCIMapping */
  23.         /* private */
  24.         struct SignalSemaphore pci_PageGuard;
  25.         struct SignalSemaphore pci_CfgGuard;
  26.     struct Library    *pci_ExpansionBase;
  27.         volatile APTR    pci_OldBUSHandler;
  28. };
  29.  
  30.         
  31.  
  32.  
  33. #endif    /* RESOURCES_CARD_H */
  34.  
  35.  
  36.